home *** CD-ROM | disk | FTP | other *** search
- // menu_bar.h
-
- #define PILOT_PRECOMPILED_HEADERS_OFF
- #include <Pilot.h>
- #include "view.h"
-
- class menu_bar: public view {
- public:
- menu_bar(FormGadgetType* gadgetP, view* in_superview); // pass pointer to gadget where clock should be
- virtual ~menu_bar();
-
- // overriding pane:
- virtual Boolean click(int x, int y);
-
- protected:
- Boolean m_open;
-
- // overriding pane:
- virtual void draw_self();
- virtual Boolean click_self(int x, int y);
- };